home *** CD-ROM | disk | FTP | other *** search
- {*********************************************************}
- {* RBPHASE.PAS 1.11 *}
- {* Copyright (c) Tamarack Associates 1996. *}
- {* All rights reserved. *}
- {*********************************************************}
-
- unit rbPhase;
-
- interface
-
- uses
- {$IFDEF WIN32}
- Windows,
- {$ELSE}
- WinTypes, WinProcs,
- {$ENDIF}
- SysUtils, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Gauges, StdCtrls, Buttons, ExtCtrls;
-
- type
- TPhaseForm = class(TForm)
- Panel1: TPanel;
- CancelBtn: TBitBtn;
- Gauge: TGauge;
- procedure CancelBtnClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- PhaseForm: TPhaseForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TPhaseForm.CancelBtnClick(Sender: TObject);
- begin
- Close
- end;
-
- end.